home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / music / delitracker / files / arexx.lzx / Arexx / dt_append.rexx next >
OS/2 REXX Batch file  |  2015-10-11  |  212b  |  19 lines

  1. /* DeliTracker - toggles append */
  2.  
  3. address 'DELITRACKER'
  4.  
  5. options results
  6.  
  7.  
  8. status G app
  9.  
  10. if result == "no" then do
  11.     Append yes
  12.     say "Append is now on..."
  13. end
  14. else do
  15.     Append no
  16.     say "Append is now off..."
  17. end
  18.  
  19.